Dynomotion

Group: DynoMotion Message: 7919 From: Adol Date: 7/12/2013
Subject: question about hardware feedrate control
Hi to everyone!
nowadays i have an encoder (MPEG) to Jog the axis of my mill, without the need to turn on the pc, but, can i use too the MPG to change the feed rate on the fly, without pc?

thanks
Adolfo
Group: DynoMotion Message: 7921 From: Tom Kerekes Date: 7/12/2013
Subject: Re: question about hardware feedrate control
Hi Adolfo,

I don't see how you can run GCode at all without the PC turned on.

Regards
TK


Group: DynoMotion Message: 7925 From: Adol Date: 7/13/2013
Subject: Re: question about hardware feedrate control
Hi Tom
 i try to avoid the pc lag, i use the same pc to control 2 machines (one with kflop and the other with mach3 by paralel port), by this way i can use two machines at the same time

anyway, how can i modify the feed rate override with the MPG? my pc and the machine are not near

another request, when i work with 4 axis in the Gcode viewer the 4 axis (A axis) is unrepresented, when i have to mill 2 face (rotated 90º) all the trayectory line of both milling remains overlapping, it´s imposible to know that happen with the milling

thanks a lot
Adolfo


2013/7/12 Tom Kerekes <tk@...>
 

Hi Adolfo,

I don't see how you can run GCode at all without the PC turned on.

Regards
TK


Group: DynoMotion Message: 7926 From: Tom Kerekes Date: 7/13/2013
Subject: Re: question about hardware feedrate control
Hi Adolfo,

We don't have a way to avoid the "pc lag" on FRO because feedrate changes affect the trajectory planning.  You can use your MPG to change the FRO on the PC with these commands:

    DoPCFloat(PC_COMM_SET_FRO,1.1f);  // set to this value
    DoPCFloat(PC_COMM_SET_FRO_INC,0.9f);  // apply this factor

Of course you would need to write code to watch for a certain amount of MPG change or however you would like it to work.

Regarding A axis:  we don't represent the A axis in the plot.  We would need to have specified the geometry of the system.  Do you have a GCode example and a CAD plot or something how it is supposed to look?

Regards
TK

Group: DynoMotion Message: 7948 From: Adol Date: 7/16/2013
Subject: Re: question about hardware feedrate control
Hi Tom
thanks for the info

about 4 axis: this code mill a 2d shape square then turn the piece 90º (parallel to Y axis) and mill another 2d shape a circle in the turned face

G0 G90
G0 Z25
x-20y-20
g1z-1 F200
x20
Y20
X-20
Y-20
G0 Z25

G1 A90 F500 (A axis parallel to Y axis)
G0 X0Y-20
G1 Z-1 F200

G2 X0Y-20 I0J20
G0 Z50
M30

another simple example is G1 Y100 A90 F200

would be great a Gcode viewer as the one having linuxcnc

thanks




2013/7/13 Tom Kerekes <tk@...>
 

Hi Adolfo,

We don't have a way to avoid the "pc lag" on FRO because feedrate changes affect the trajectory planning.  You can use your MPG to change the FRO on the PC with these commands:

    DoPCFloat(PC_COMM_SET_FRO,1.1f);  // set to this value
    DoPCFloat(PC_COMM_SET_FRO_INC,0.9f);  // apply this factor

Of course you would need to write code to watch for a certain amount of MPG change or however you would like it to work.

Regarding A axis:  we don't represent the A axis in the plot.  We would need to have specified the geometry of the system.  Do you have a GCode example and a CAD plot or something how it is supposed to look?

Regards
TK